math/big.nat.expNN (method)
8 uses
math/big (current package)
int.go#L597: z.abs = z.abs.expNN(xWords, yWords, mWords, slow)
nat.go#L946: func (z nat) expNN(x, y, m nat, slow bool) nat {
nat.go#L1082: z1 := nat(nil).expNN(x, y, m1, false)
nat.go#L1083: z2 := nat(nil).expNN(x, y, m2, false)
natconv.go#L455: return z.expNN(nat(nil).setWord(x), nat(nil).setWord(y), nil, false)
prime.go#L106: y = y.expNN(x, q, n, false)
ratconv.go#L181: pow5 := z.b.abs.expNN(natFive, nat(nil).setWord(Word(n)), nil, false) // use underlying array of z.b.abs
ratconv.go#L349: p = nat(nil).expNN(natTen, nat(nil).setUint64(uint64(prec)), nil, false)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |